﻿@charset "UTF-8";
/*店铺轮播*/
.banner{
    width:1200px;
    height:300px;
    margin: 0 auto;
    padding: 25px 0px;
}
.carousel {
    position: relative;
    width: 350px; 
    height: 250px;
    float: left ; 
    overflow: hidden; 
}
.carousel-container {
    display: flex; 
    transition: transform 0.5s ease; 
}
.carousel-image {
    width: 350px; 
    height: 250px; 
}
button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 10px;
}
.prev {
    left: 10px; 
}
.next {
    right: 10px;
}
/*最新咨询时事*/
.current {
    width: 350px;
    height: 250px; 
    float: left;
    margin: 0px 75px;
    overflow: hidden;
}
.current h4{
    margin: 0px 0px;
}
.current p{
    font-size: 14px;
    margin: 0px 0px;
    line-height: 49px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.current a{
    color: #888;
}
/*产品轮播*/
.product-images img {
    position: relative;
    width: 350px;
    height: 250px;
    display: none; 
}
.product-images img.active {
    display: block; 
}
/*主体*/
.main{
	width: 1200px;
	margin: 0 auto;
	overflow: hidden;
	margin-bottom: 150px;
}
/*健康咨询*/
.main .healthy{
	width: 350px;
	float: left;
	margin-top: 35px;
}
.main .healthy h3{
	padding:35px 0 15px 0;
	font-weight: normal;
}
.main .healthy p{
	font-size: 18px;
	line-height: 50px;
	overflow: hidden;          
    text-overflow: ellipsis;
    white-space: nowrap;
}
.main .healthy p a{
	font-size: 14px;
	color: #888;
	text-decoration:none;
}
/*行业时讯*/
.main .industry{
	width: 350px;
	float: left;
	margin:35px 75px 0 75px;
}
.main .industry h3{
	padding:35px 0 15px 0;
	font-weight: normal;
}
.main .industry p{
	font-size: 18px;
	line-height: 50px;
	overflow: hidden;          
    text-overflow: ellipsis;
    white-space: nowrap;
}
.main .industry p a{
	font-size: 14px;
	color: #888;
	text-decoration:none;
}
/*政策法规*/
.main .policy{
	width: 350px;
	float: right;
	margin-top: 35px;
}
.main .policy h3{
	padding:35px 0 15px 0;
	font-weight: normal;
}
.main .policy p{
	font-size: 18px;
	line-height: 50px;
	overflow: hidden;          
    text-overflow: ellipsis;
    white-space: nowrap;
}
.main .policy p a{
	font-size: 14px;
	color: #888;
	text-decoration:none;
}